SNOW-3309660: Fix XML tests to run in Snowfort#4200
Merged
sfc-gh-mayliu merged 4 commits intomainfrom Apr 30, 2026
Merged
Conversation
|
All contributors have signed the CLA ✍️ ✅ |
0ba6aac to
4e0ef2f
Compare
Collaborator
Author
|
I have read the CLA Document and I hereby sign the CLA |
…tests-for-snowfort
4c90ae6 to
39e0823
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4200 +/- ##
==========================================
+ Coverage 95.10% 95.42% +0.31%
==========================================
Files 171 171
Lines 43840 43840
Branches 7517 7517
==========================================
+ Hits 41696 41833 +137
+ Misses 1334 1226 -108
+ Partials 810 781 -29 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…tests-for-snowfort
sfc-gh-joshi
approved these changes
Apr 30, 2026
sfc-gh-aling
approved these changes
Apr 30, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which Jira issue is this PR addressing? Make sure that there is an accompanying issue to your PR.
Fixes SNOW-3309660
Fill out the following pre-review checklist:
Please describe how your code solves the related issue.
Please write a short description of how your code change solves the related issue.
convert_sf_to_sp_typeonly checked against the regular max, so Iceberg string columns were returned asStringType(134217728)with_is_max_size=False, breaking equality withStringType()test_read_xml_row_tagusedcollect()to materialize full result sets, which fails inside stored procedures when the result is large enough to trigger paginated download URLs (unsupported byStoredProcRestfulSession). Replaced with count() + len(df.columns) to validate row/column counts without materializing the data.